/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

html {
    margin-right: 0;
    height: 100%;
  }
  
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Abhaya Libre", 'Times New Roman', serif;
  font-weight: 200;
  background-color: #FBFCF3;
  color: #A3A292;
  display: flex;
  height: 100%;
  max-width: 100%;
}

main {
  display: flex;
  flex: 1;
  flex-direction: row;
  max-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

.section-artwork {
  min-width: 50vw;
  display: grid;
}

.artwork-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-artwork > * {
  grid-area: 1 / 1;
}

.logo {
  width: 50%;
  height: auto;
}

figcaption {
  color: white;
  display: inline-block;
  align-self: flex-end;
  align-content: end;
  padding-left: 1rem;
  padding-bottom: 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
  height: 30%;
  line-height: 1.25;
}

.section-signup {
  min-width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.signup-container {
  display: flex;
  flex-direction: column;
  width: 62%; 
  height: auto;
  gap: 2.5rem;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
}

.signup, .signup-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.signin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.interact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 70%;
}

footer {
  min-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
}

input {
  display: inline-block;
  position: relative;
  background-color: transparent;
  border:none;
  border-bottom: 0.0625rem solid;
  border-color: #A3A292;
  min-width: 100%;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 100%;
}

.confirm-pass {
  display: flex;
  justify-content: space-between;
}

.password-toggle {
  background-color: transparent;
  color: #A3A292;
  border: none;
}

.password-toggle:hover {
  text-decoration: solid;
}

.tos {
  font-size: 0.8rem;
}

.button-signup {
  min-width: 100%;
  background-color: #C4A81B;
  border: none;
  color: #fff;
  height: auto;
  padding: 0.4rem 0;
}

.button-alt {
  display: flex;
  min-width: 100%;
  background-color: #ffffff;
  color: #A3A292;
  border: solid 0.0625rem #A3A292;
  height: auto;
  padding: 0.4rem 0;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.text-alt {
  text-decoration-line: underline;
  color: #C4A81B;
}

.logo {
  color: #C4A81B;
}

.icon {
  display: inline-block;
  max-height: 1.25rem;
  width: auto;
  align-self: center;
}

.separator {
  width: 100%; 
  text-align: center; 
  border-bottom: 1px solid #A3A292; 
  line-height: 0.1em;
} 

.separator, .separator-text { 
  background-color: #FBFCF3;
  padding:0 0.8rem; 
}